The <p> Tag

The <p> tag is used to define a paragraph of text.

The `<p>` tag is used to define a paragraph of text. It is commonly used to enclose the main content of a webpage. Here's an example of a paragraph of text: ```html <p>This is a paragraph of text.</p> ``` In this example, the `<p>` tag is used to enclose the text "This is a paragraph of text." ## HTML Tags Here's a list of some common HTML tags: - `<html>`: The root element of an HTML page. - `<head>`: Contains meta-information about the HTML document. - `<title>`: Specifies the title of the webpage. - `<body>`: Contains the visible content of the webpage. - `<h1>`: Heading level 1. - `<h2>`: Heading level 2. - `<h3>`: Heading level 3. - `<h4>`: Heading level 4. - `<h5>`: Heading level 5. - `<h6>`: Heading level 6. - `<p>`: Paragraph of text. - `<ul>`: Unordered list. - `<ol>`: Ordered list. - `<li>`: List item. - `<a>`: Anchor tag. - `<img>`: Image tag. - `<div>`: Division tag. - `<span>`: Span tag.